home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 020a / hpprint.zip / HPPRINT.DOC next >
Text File  |  1992-01-24  |  4KB  |  110 lines

  1. (C) copyright 1992 Gregory D. Weeks
  2.  
  3. HPprint is a program that will print 256 color PC Paintbrush
  4. (.PCX) pictures on the HP Paint Jet printer.
  5.  
  6. The Paint Jet printer has three colored inks and black ink.  By
  7. mixing inks, the printer can print in eight pure colors.  The
  8. printer has a low-res 90dpi mode that uses dithering to simulate
  9. almost 3000 colors.  The problem with the built in dither mode is
  10. that only 16 of the 3000 colors can be printed on any 1 line.
  11. This limitation doesn't allow very good reproduction of 256 color
  12. pictures.
  13.  
  14. To print 256 color pictures with better results, the printer is
  15. setup to print the eight pure colors, and the dither is performed
  16. in the computer rather than in the printer.  This dither is based
  17. upon the Stevenson and Arce error diffusion dither.  The dither
  18. is very computationally intensive (it takes a long time).
  19.  
  20. Dithers also work better when the picture is expanded, so
  21. expansion is supported.  If the expansion is larger than will fit
  22. on one page, the picture will be printed in strips that are one
  23. page wide.  The strips, other than the first one, are stored in a
  24. temporary disk file.  This file can get quit large and should be
  25. placed on a fixed disk or large (huge >4Meg) ram disk.
  26.  
  27. Actually running HPprint is easy.  Type:
  28.  
  29. HPPRINT FILENAME
  30.  
  31. and the picture FILENAME.PCX will be printed size as.  To print
  32. it expanded double type:
  33.  
  34. HPPRINT FILENAME /V2 /H2
  35.  
  36. Notice the horizontal and vertical expansions are separate
  37. entries.  If you don't want to print the picture, but do want to
  38. get an idea of what it looks like type:
  39.  
  40. HPPRINT FILENAME /V2 /H2 /PV
  41.  
  42. This works on VGAs, if you have and EGA type:
  43.  
  44. HPPRINT FILENAME /V2 /H2 /PE
  45.  
  46. If you have a VGA with an 800x600 mode, you can preview in
  47. 800x600 mode by placing the mode number in decimal after the V
  48. like:
  49.  
  50. HPPRINT FILENAME /V2 /H2 /PV41
  51.  
  52. or for EGA:
  53.  
  54. HPPRINT FILENAME /V2 /H2 /PE88
  55.  
  56. A list of graphics cards and the numbers to use follows:
  57.  
  58. Tecmar VGA/AD                              22
  59. Tseng ET-3000, ET-4000                     41
  60. Swan Super VGA                             41
  61. STB VGA Extra/EM                           41
  62. Vega VGA                                   41
  63. Sigma                                      41
  64. Oak VGA-16                                 82
  65. ATI EGAWonder                              88
  66. Western Digital WD90C00                    88
  67. Paradise VGA 1024                          88
  68. Paradise EGA-480                           88
  69. Maxxon                                     91
  70. SEFCO TVGA                                 91
  71. Imtec                                      91
  72. Loxix                                      94
  73. ATI Prism Elite                            94
  74. Headland HT-208  Headland Video Seven      98
  75. ZyMOS Poach 51                             106 or 91
  76. TrueTech HiRes VGA                         106 or 91
  77. Trident TVGA 8800CS                        106
  78. Everex Viewpint VGA                        106
  79. Ahead V5000   VGA Wizard/Deluxe            106 or 113
  80. ATI 18800     ATI VGAWonder                106 or 84
  81. Cirrus        CL-GD 510, CL-GD 520         106
  82. MaxLogic      MaxVGA                       106
  83. C&T 82C452    Boca 1024VGA                 106
  84. VESA                                       106
  85. Genoa 6400    Genoa SuperVGA               121
  86.  
  87.  
  88. If your card isn't listed, but you have documentation on it, look
  89. for the mode set number for the 800x600 16 color graphics mode.
  90.  
  91. Good Luck.  Have Fun.
  92.  
  93. I can be reached at
  94. Gregory D. Weeks
  95. RR1 Box 25B
  96. Floris, IA 52560-9801
  97.  
  98.  
  99. Planned for later versions.
  100.  
  101.    1.  Interactive mode.  Command line parameters won't be needed.
  102.    2.  More dither methods.
  103.    3.  A smoothing filter after the expansion.
  104.    4.  Nonintegral expansion.  i.e.  expand by 1.2
  105.    5.  Color matching with the actual ink colors YOU'RE using.
  106.    6.  Gamma correction so it doesn't print dark.
  107.    7.  Faster. (I hope)
  108.    8.  Support for more printers.
  109.    9.  More file formats.  (24 bit TIFF or Targa)
  110.